added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2010 / VBSL4FileDragDrop / MainPage.xaml
blob7755531581287f97b7093500f7ee57c7d4235264
1 <UserControl x:Class="VBSL4FileDragDrop.MainPage"
2     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6     mc:Ignorable="d"
7     Width="640" Height="480">
8     <Border CornerRadius="10" Background="AliceBlue" Margin="10" BorderBrush="Gray" BorderThickness="1">
9         <Grid>
10             <TextBlock Text="Drop Image files here" Foreground="#FF0074CE"  FontStyle="Italic"  FontSize="24" VerticalAlignment="Center" HorizontalAlignment="Center"/>
11             <Canvas x:Name="LayoutRoot" Background="Transparent" AllowDrop="True" Drop="LayoutRoot_Drop" />
12         </Grid>
13     </Border>
14 </UserControl>